home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / siscale.h < prev    next >
C/C++ Source or Header  |  1996-04-07  |  5KB  |  132 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* siscale.h */
  20. /* Image scaling filter state definition */
  21. /* Requires strimpl.h */
  22. #include "gconfigv.h"
  23.  
  24. /* Define whether to accumulate pixels in fixed or floating point. */
  25. #if USE_FPU <= 0
  26.  
  27.     /* Accumulate pixels in fixed point. */
  28.  
  29. typedef int PixelWeight;
  30. #  if arch_ints_are_short
  31. typedef long AccumTmp;
  32. #  else
  33. typedef int AccumTmp;
  34. #  endif
  35. #define num_weight_bits\
  36.   ((sizeof(AccumTmp) - maxSizeofPixel) * 8 - (log2_max_support + 1))
  37. #define scale_PixelWeight(factor) ((int)((factor) * (1 << num_weight_bits)))
  38. #define unscale_AccumTmp(atemp) arith_rshift(atemp, num_weight_bits)
  39.  
  40. #else        /* USE_FPU > 0 */
  41.  
  42.     /* Accumulate pixels in floating point. */
  43.  
  44. typedef float PixelWeight;
  45. typedef double AccumTmp;
  46. #define scale_PixelWeight(factor) (factor)
  47. #define unscale_AccumTmp(atemp) ((int)(atemp))
  48.  
  49. #endif        /* USE_FPU */
  50.  
  51. /* Input values */
  52. /*typedef byte PixelIn;*/        /* see sizeofPixelIn below */
  53. /*#define MaxValueIn 255*/        /* see MaxValueIn below */
  54.  
  55. /* Temporary intermediate values */
  56. typedef byte PixelTmp;
  57. typedef int PixelTmp2;            /* extra width for clamping sum */
  58. #define minPixelTmp 0
  59. #define maxPixelTmp 255
  60. #define unitPixelTmp 255
  61.  
  62. /* Max of all pixel sizes */
  63. #define maxSizeofPixel 2
  64.  
  65. /* Output values */
  66. /*typedef byte PixelOut;*/        /* see sizeofPixelOut below */
  67. /*#define MaxValueOut 255*/        /* see MaxValueOut below */
  68.  
  69. /*
  70.  * The 'support' S of the digital filter is the value such that the filter
  71.  * is guaranteed to be zero for all arguments outside the range [-S..S].
  72.  * We artificially limit the support so that we can put an upper bound
  73.  * on the time required to compute an output value and on the amount of
  74.  * storage required for the X-filtered input data; this also allows us
  75.  * to use pre-scaled fixed-point values for the weights if we wish.
  76.  *
  77.  * 8x8 pixels should be enough for any reasonable application....
  78.  */
  79. #define log2_max_support 3
  80. #define max_support (1 << log2_max_support)
  81.  
  82. /* Auxiliary structures. */
  83.  
  84. typedef struct {
  85.     PixelWeight    weight;        /* float or scaled fraction */
  86. } CONTRIB;
  87.  
  88. typedef struct {
  89.     int    index;        /* index of first element in list of */
  90.                 /* contributors */
  91.     int    n;        /* number of contributors */
  92.                 /* (not multiplied by stride) */
  93.     int    first_pixel;    /* offset of first value in source data */
  94. } CLIST;
  95.  
  96. /* ImageScaleEncode / ImageScaleDecode */
  97. typedef struct stream_IScale_state_s {
  98.     stream_state_common;
  99.         /* The client sets the following before initialization. */
  100.     int Colors;            /* any number >= 1 */
  101.     int BitsPerComponentIn;        /* bits per input value, 8 or 16 */
  102.     uint MaxValueIn;        /* max value of input component */
  103.     int WidthIn, HeightIn;
  104.     int BitsPerComponentOut;    /* bits per output value, 8 or 16 */
  105.     uint MaxValueOut;        /* max value of output component */
  106.     int WidthOut, HeightOut;
  107.         /* The init procedure sets the following. */
  108.     int sizeofPixelIn;    /* bytes per input value, 1 or 2 */
  109.     int sizeofPixelOut;    /* bytes per output value, 1 or 2 */
  110.     double xscale, yscale;
  111.     void /*PixelIn*/ *src;
  112.     void /*PixelOut*/ *dst;
  113.     PixelTmp *tmp;
  114.     CLIST *contrib;
  115.     CONTRIB *items;
  116.         /* The following are updated dynamically. */
  117.     int src_y;
  118.     uint src_offset, src_size;
  119.     int dst_y;
  120.     uint dst_offset, dst_size;
  121.     CLIST dst_next_list;        /* for next output value */
  122.     int dst_last_index;        /* highest index used in list */
  123.     CONTRIB dst_items[max_support];    /* ditto */
  124. } stream_IScale_state;
  125. extern_st(st_IScale_state);    /* so clients can allocate */
  126. #define public_st_IScale_state()    /* in siscale.c */\
  127.   gs_public_st_ptrs5(st_IScale_state, stream_IScale_state,\
  128.     "ImageScaleEncode/Decode state",\
  129.     iscale_state_enum_ptrs, iscale_state_reloc_ptrs,\
  130.     dst, src, tmp, contrib, items)
  131. extern const stream_template s_IScale_template;
  132.